home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer (Italian) 36
/
PC Gamer IT CD 36 2-2.iso
/
VIGDEMO
/
data1.cab
/
Assets
/
scripts
/
Human.e
< prev
next >
Wrap
Text File
|
1998-09-21
|
659b
|
36 lines
int Forward(int objectptr,int steps) {
CAction( objectptr, "n", "Forward" , steps);
return steps;
}
int Backward(int objectptr,int steps) {
CAction( objectptr, "n", "Backward" , steps);
return steps;
}
int TurnLeft(int objectptr,int steps) {
CAction( objectptr, "n", "TurnLeft" , steps);
return steps;
}
int TurnRight(int objectptr,int steps) {
CAction( objectptr, "n", "TurnRight" , steps);
return steps;
}
int Jump(int objectptr,int steps) {
CAction( objectptr, "n", "Jump" , steps);
return steps;
}
int Fire(int objectptr,int steps) {
CAction( objectptr, "n", "Fire" , steps);
return steps;
}